home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 30 / PC Gamer IT CD 30 1-2.iso / MOTS / GAMEDATA / RESOURCE / JKMRES.GOO / cog_item_keyblue.cog < prev    next >
Text File  |  1998-02-25  |  548b  |  39 lines

  1. # Jedi Knight Cog Script
  2. #
  3. # ITEM_KEYBLUE.COG
  4. #
  5. # INVENTORY script - Blue Key
  6. # Bin 47
  7. #
  8. # [CYW & YB]
  9. #
  10. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  11.  
  12.  
  13. symbols
  14.  
  15. sound            keysound=BactaUse01.WAV
  16. thing            player
  17.  
  18. message        activated
  19.  
  20. end
  21.  
  22. # ========================================================================================
  23.  
  24. code
  25.  
  26. activated:
  27.     player = GetSourceRef();
  28.     // Print("This is a Blue Key...");
  29.     jkPrintUNIString(player, 257);
  30.     PlaySoundLocal(keysound, 1.0, 0.0, 0 );
  31.  
  32.     Return;
  33.  
  34. end
  35.  
  36.  
  37.  
  38.  
  39.